home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / temacd / tiny / tpf-6[1].5.126.exe / Tiny Firewall 2005.msi / webui.dll / APPREP / ARN-DETAIL.XSL next >
Encoding:
Extensible Markup Language  |  2005-08-17  |  8.7 KB  |  110 lines

  1.  ■<?xml version='1.0'?>
  2. <!--
  3. /*//////////////////////////////////////////////////////////////////////
  4. Filename:          arn-detail.xsl
  5. Company Name:      Computer Associates International, Inc.
  6. Legal Copyright: Copyright (c) Computer Associates International, Inc.
  7. Author:          Marek Matus (marek.matus@ca.com)
  8. Product:          Tiny Firewall
  9. Description:      Application Repository UI
  10. ///////////////////////////////////////////////////////////////////////*/
  11.  -->
  12. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  13.     <xsl:output method="html" indent="yes"/>
  14.         
  15.     <!-- <xsl:include href="../common/tools.xsl"/> -->
  16.     <xsl:variable name="INCLUDED_FILES">../common/tools.xsl</xsl:variable>
  17.     
  18.     <xsl:variable name="label" select="//Params/Param[@name='label']"/>
  19.     <xsl:variable name="isdll" select="//Params/Param[@name='isdll']"/>
  20.     
  21.     <xsl:template match="/">            
  22.         <xsl:choose>
  23.             <xsl:when test="$isdll='true' or $isdll='1'">
  24.                 <xsl:apply-templates select="//DllLabelList/DllLabel[@id=$label]"/>
  25.             </xsl:when>
  26.             <xsl:otherwise>
  27.                 <xsl:apply-templates select="//LabelList/Label[@id=$label]"/>
  28.             </xsl:otherwise>
  29.         </xsl:choose>
  30.     </xsl:template>
  31.     
  32.     <xsl:template match="Label|DllLabel">
  33.         <xsl:param name="isDll"/>
  34.               <xsl:text>new Array(</xsl:text>
  35.                   <xsl:value-of select="$isdll"/>
  36.                   <xsl:text>, '</xsl:text>
  37.                       <xsl:call-template name="printJSText">
  38.                           <xsl:with-param name="string" select="./@desc"/>
  39.                     </xsl:call-template>
  40.                 <xsl:text>','</xsl:text>
  41.                     <xsl:call-template name="printJSText">
  42.                         <xsl:with-param name="string" select="./@id"/>
  43.                     </xsl:call-template>
  44.                 <xsl:text>','</xsl:text>
  45.                         <xsl:call-template name="printJSText">
  46.                             <xsl:with-param name="string" select="./Path"/>
  47.                         </xsl:call-template>
  48.                 <xsl:text>','</xsl:text>
  49.                         <xsl:for-each select="./Chksm">
  50.                             <xsl:if test="position()>1">
  51.                                 <br/>
  52.                             </xsl:if>
  53.                             <xsl:value-of select="."/>
  54.                             
  55.                             <xsl:if test="@origname">
  56.                                 <br/>
  57.                                 <xsl:text>(</xsl:text>
  58.                                 <xsl:call-template name="printJSText">
  59.                                     <xsl:with-param name="string" select="@origname"/>
  60.                                 </xsl:call-template>
  61.                                 <xsl:text>)</xsl:text>
  62.                             </xsl:if>
  63.                         </xsl:for-each>
  64.                 <xsl:text>',new Array(</xsl:text>
  65.                         
  66.                             <xsl:call-template name="getGroupList">
  67.                                 <xsl:with-param name="file" select="./@id"/>
  68.                             </xsl:call-template>
  69.                         
  70.                 <xsl:text>),'</xsl:text>
  71.                 <xsl:value-of select="@type"/>
  72.                 <xsl:text>'</xsl:text>
  73.               <xsl:text>)</xsl:text>
  74.     </xsl:template>
  75.     
  76.     <!-- Get group list for given file -->
  77.     <xsl:template name="getGroupList">
  78.             <xsl:param name="file"/>
  79.             
  80.             <xsl:if test="$isdll='true'">                
  81.                 <xsl:for-each select="//DllGroupList/DllGroup[DllLabelID=$file]">
  82.                     <xsl:if test="position()>1">
  83.                         <xsl:text>,</xsl:text>
  84.                     </xsl:if>
  85.                     <xsl:text>'</xsl:text>
  86.                         <xsl:call-template name="printJSText">
  87.                             <xsl:with-param name="string" select="@id"/>
  88.                         </xsl:call-template>
  89.                     <xsl:text>'</xsl:text>
  90.                 </xsl:for-each>
  91.             </xsl:if>
  92.             
  93.             <xsl:if test="$isdll='false'">
  94.                 <xsl:for-each select="//GroupList/Group[LabelID=$file]">                
  95.                     <xsl:if test="position()>1">
  96.                         <xsl:text>, </xsl:text>
  97.                     </xsl:if>
  98.                     <xsl:text>'</xsl:text>
  99.                         <xsl:call-template name="printJSText">
  100.                             <xsl:with-param name="string" select="@id"/>
  101.                         </xsl:call-template>
  102.                     <xsl:text>'</xsl:text>
  103.                 </xsl:for-each>
  104.             </xsl:if>
  105.             
  106.     </xsl:template>
  107. </xsl:stylesheet>